home *** CD-ROM | disk | FTP | other *** search
/ MacAddict 123 / MacAddict_123_2006_11.iso / Software / Internet & Communication / Sandvox 1.0.4.dmg / Sandvox.app / Contents / Resources / RSSTemplate.xml < prev    next >
Extensible Markup Language  |  2006-08-04  |  2KB  |  49 lines

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <rss version="2.0">
  3.      <channel>
  4.         <title>[[=&comboTitleText]]</title>
  5.         <link>[[=&url]]</link>
  6.         <description></description>
  7.         <language>[[=languageInherited]]</language>
  8.         <lastBuildDate>[[=document.documentLastBuildDate]]</lastBuildDate>
  9.         <docs>http://blogs.law.harvard.edu/tech/rss</docs>
  10.         <generator>[[=&document.appNameVersion]]</generator>
  11. [[if root.headerImageInherited]]
  12.         <image>
  13.             <url>[[=&root.headerImageInherited.rssImage.publishedURL]]</url>
  14.             <title>[[=&root.headerImageDescriptionInherited]]</title>
  15.             <link>[[=&url]]</link>
  16.             <width>[[=headerImageInherited.rssImage.width]]</width>
  17.             <height>[[=headerImageInherited.rssImage.height]]</height>
  18.         </image>
  19. [[endif]]
  20. [[foreach sortedReverseChronoChildrenInIndex item]]
  21.         <item>
  22.             <title>[[=&item.titleText]]</title>
  23.             <link>[[=&item.url]]</link>
  24.             <description>
  25. [[if item.thumbnail]]
  26. [[media item.thumbnail.thumbnailImage item.uniqueID]]
  27.                 <div class="article-thumbnail">
  28.                     <img[[idClass entity:Page property:image flags:"anchor" id:item.uniqueID]]
  29.                         src="[[=item.thumbnail.thumbnailImage.publishedURL]]"
  30.                         alt="[[=&item.titleText]]"
  31.                         width="[[=item.thumbnail.thumbnailImage.width]]"
  32.                         height="[[=item.thumbnail.thumbnailImage.height]]" />
  33.                 </div>
  34. [[endif]]
  35. [[=&item.summaryHTML]]
  36.             </description>
  37.             <pubDate>[[=item.creationDateRFC822]]</pubDate>
  38.             <guid>[[=&item.url]]</guid>
  39. [[if item.enclosure]]
  40.             <enclosure url="[[=&item.enclosure.publishedURL]]" length="[[=&item.enclosure.dataLength]]" type="[[=&item.enclosure.MIMEType]]" />
  41. [[endif]]
  42. [[forEach item.keywords aCategory]]
  43.             <category>[[=&aCategory]]</category>
  44. [[endForEach2]]
  45.         </item>
  46. [[endForEach]]
  47.      </channel>
  48. </rss>
  49.